home *** CD-ROM | disk | FTP | other *** search
- Identifier
- A label for a variable, function, or data definition, etc. They are case sensitive. Start with an underline or alpha character and up to 8 chr. long
- main()
- The point at which a C program begins execution. It must appear once and only once in each program.
- Parentheses
- Indicate a function in a C program
- Braces
- Used to define the limits of a C program
- Semi-colon
- A statement terminator, signaling the end of a complete line.
- printf
- The command to print to the screen.
- int
- The label for an integer variable
- /* */
- The enclosures for a comment
- for
- Reserved word designating a loop
- do
- Reserved word designating a conditional loop
- /n
- Designates a carriage return and line feed to the screen.
- %d
- Output a decimal variable
-